module Hydrocraft
{
    imports
    {
        Base
    }

item HCBrassscrap
    {
        Weight    		=    	0.1,
        Type    		=    	Normal,
        DisplayName    		=    	Scrap Brass,
        Icon    		=    	HCBrassscrap,
		DisplayCategory = CraftMet,
    }
	

	
recipe Recycle Brass
    {
    	SkillRequired:MetalWelding=7,
    	HCBrasssheet,
    	Charcoal,
    	[Recipe.GetItemTypes.StartFire],
    	HCIngotmold,
    	[Recipe.GetItemTypes.BlacksmithTongs],
    	keep [Recipe.GetItemTypes.LeatherGloves]/HCFiresuit,
    	keep HCSmelter2/HCFurnace2/HCBlastfurnace2,
    	CanBeDoneFromFloor:true,
    	Result:HCBrassingot,
    	NeedToBeLearn:true,
    	Time:1000,
    	Category:Smithing,
    	OnCreate:getBurned,
    	OnGiveXP:HCWelding_OnGiveXP,
    }
	
}